/* src/config.h */

/* Define if you have the ANSI C header files.  */
#define STDC_HEADERS 1

/* Set to 1 if the processor is big endian, otherwise set to 0.  */
#define GUESS_BIG_ENDIAN 0

/* Set to 1 if the processor is little endian, otherwise set to 0.  */
#define GUESS_LITTLE_ENDIAN 1

/* Set to 1 if the processor can read and write Intel x86 32 bit floats.  */
/* Otherwise set it to 0.  */
#define CAN_READ_WRITE_x86_IEEE 1

/* system has 80 bit floats */
//#define HAVE_IEEE854_FLOAT80 0

/* The number of bytes in a long double.  */
#define SIZEOF_LONG_DOUBLE 12

/* The number of bytes in a double.  */
#define SIZEOF_DOUBLE 12

/* The number of bytes in a float.  */
#define SIZEOF_FLOAT 4

/* The number of bytes in an int.  */
#define SIZEOF_INT 4

/* The number of bytes in a long.  */
#define SIZEOF_LONG 4

/* The number of bytes in a short.  */
#define SIZEOF_SHORT 2

/* The number of bytes in a unsigned int.  */
#define SIZEOF_UNSIGNED_INT 4

/* The number of bytes in a unsigned long.  */
#define SIZEOF_UNSIGNED_LONG 4

/* The number of bytes in a unsigned short.  */
#define SIZEOF_UNSIGNED_SHORT 2

/* The number of bytes in a void*.  */
#define SIZEOF_VOIDP 4

/* Define if you have the fclose function.  */
#define HAVE_FCLOSE 1

/* Define if you have the fopen function.  */
#define HAVE_FOPEN 1

/* Define if you have the fread function.  */
#define HAVE_FREAD 1

/* Define if you have the free function.  */
#define HAVE_FREE 1

/* Define if you have the fseek function.  */
#define HAVE_FSEEK 1

/* Define if you have the ftell function.  */
#define HAVE_FTELL 1

/* Define if you have the fwrite function.  */
#define HAVE_FWRITE 1

/* Define if you have the malloc function.  */
#define HAVE_MALLOC 1

/* Define if you have the <endian.h> header file.  */
#define HAVE_ENDIAN_H

/* Define if you have the <errno.h> header file.  */
#define HAVE_ERRNO_H

/* Define if you have the <fcntl.h> header file.  */
#define HAVE_FCNTL_H

/* Define if you have the <limits.h> header file.  */
#define HAVE_LIMITS_H

/* Define if compiler has function prototypes */
#define PROTOTYPES 1

/* enable VBR bitrate histogram */
#undef BRHIST

/* IEEE754 compatible machine */
//#define TAKEHIRO_IEEE754_HACK 1

#define uint8_t unsigned char
#define uint16_t unsigned short
#define uint32_t unsigned int
#define uint64_t unsigned long long

#define HAVE_STRCHR
#define HAVE_MEMCPY

//typedef long double ieee854_float80_t;
typedef double      ieee754_float64_t;
typedef float       ieee754_float32_t;

#define CHAR_BIT 8

#undef USE_LAYER_1
#define USE_LAYER_2

#define LAME_LIBRARY_BUILD

/* Name of package */
#define PACKAGE "lame"

/* Version number of package */
#define VERSION "3.88b1"
